Description of Keys & Commands
==============================


Command-Group "MCI": Media commands
===================================

/MCI.CD.PLAY ..........: To start playing the CD
/MCI.CD.TRACK [n] .....: To play track number <n> (default VAR)
/MCI.CD.NEXT ..........: To play the next track
/MCI.CD.PREV ..........: To play previous track
/MCI.CD.PAUSE .........: To break CD play (pause)
/MCI.CD.CONT ..........: To continue CD play (after pause)
/MCI.STOP .............: To stop playing CD, midi and wave
------------------------
These commands controls the CD-ROM drive, working like a CD-player.

Example: {/MCI.CD.PLAY}

-> Hinweis
Unter den VAR-Commands gibt es einen, der den Status des Players in die Variable
VAR kopiert (siehe dort).

-> Tip
Wird der Parameter des TRACK-Commands weggelassen, so wird autom. die Variable
VAR eingesetzt. Mit Hilfe des VAR.RND Command (Random=Zufllig) lt sich daher
ein Skript erstellen, das einen Titel zufllig auswhlt und abspielt.

Example:

{/BTCH.EXPLICIT}
{/VAR.FLD.CHANGE 1}
{/VAR.SET 1} ........: VAR1 wird auf 1 gesetzt
{/VAR.FLD.CHANGE 2}
{/VAR.<.MCI 1} ......: VAR2 wird auf den Wert der Titel-Anzahl der inliegenden CD gesetzt
{/VAR.FLD.CHANGE 1}
{/VAR.RND} ..........: Fr VAR1 wird eine Zufallszahl zwischen VAR1 und VAR2 gebildet,
{/MCI.CD.TRACK} .....: die sodann abgespielt wird


/MCI.CD.OPEN ..........: To open CD door (eject)
/MCI.CD.CLOSE .........: To close CD door
/MCI.CD.COUNTER .......: To switch title-counter on/off
/MCI.CD.INFO ..........: To show several CD infos in internal text viewer
------------------------

Example: {/MCI.CD.OPEN}


/MCI.MIDI.PLAY file ...: To play a midi file <file>
/MCI.WAVE.PLAY file ...: To play a wave file <file>
------------------------
Opens a midi or wave file with the standard player.
The STOP command (see above) is also valid to stop playing midi and wave files.

Example: {/MCI.MIDI.PLAY c:\midi-songs\hit.mid}
